home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ARexxTools / RCS_TTX.lha / RCS_TTX.doc next >
Encoding:
Text File  |  1994-06-04  |  2.0 KB  |  78 lines

  1. RCS_TTX:    Some TurboText scripts to integrate RCS support.
  2. Author:        Daniel J. Barrett, barrett@cs.umass.edu
  3. Distribution:    Copyright 1994 Daniel J. Barrett.
  4.         These files are freely distributable as long as they are
  5.         distributed in their entirety.
  6.  
  7. SYSTEM REQUIREMENTS
  8. ===================
  9.  
  10.     AmigaDOS 2.04 or higher.
  11.     TurboText 1.03 (or higher).
  12.     ARexx.
  13.     HWGRCS:  Amiga RCS (available on Aminet).  The RCS commands "ci",
  14.      "rcsdiff", "diff" and "setuprcs" must be in your search path.
  15.  
  16.     The "T:" directory must be assigned somewhere, like "RAM:T".
  17.  
  18.     This documentation assumes you are familiar with RCS and configuring
  19. TurboText.
  20.  
  21.  
  22. SETUP
  23. =====
  24.  
  25.     Just copy these scripts to your REXX: directory.
  26.  
  27.     These scripts are perfect for use in the TurboText menu.  Here is
  28. how mine are set up in my TTX definition file:
  29.  
  30.     MENU " RCS "
  31.       ITEM "RCS Check-In"   ""    ExecARexxMacro RCScheckin
  32.       ITEM "Show RCS Log"   ""    ExecARexxMacro RCSshowlog
  33.       ITEM "Show Changes"    ""    ExecARexxMacro RCSchanges
  34.  
  35.  
  36. BRIEF DOCUMENTATION
  37. ===================
  38.  
  39. RCScheckin.ttx
  40.  
  41.     This script does a check-in ("ci -l") of the current document.
  42.     The "RCS" subdirectory is created in the same directory as the
  43.     document's file, if it does not already exist
  44.  
  45.     You may specify any "ci" command-line options as options for this
  46.     script.
  47.  
  48. RCSchanges.ttx
  49.  
  50.     This script does an "rcsdiff" of the current document.
  51.     You may specify any "rcsdiff" command-line options as options for
  52.     this script.
  53.  
  54. RCSshowlog.ttx
  55.  
  56.     This script does an "rlog" of the current document.
  57.     You may specify any "rlog" command-line options as options for
  58.     this script.
  59.  
  60.  
  61. TESTING
  62. =======
  63.  
  64.     All of these scripts and this documentation file were created and
  65. maintained using the scripts themselves!  Yes, the "RCScheckin" script
  66. was actually checked-in by itself.  Isn't bootstrapping wonderful? :-)
  67.  
  68.  
  69. THE FUTURE
  70. ==========
  71.  
  72.     I may add more commands and update this documentation in the future.
  73. For right now, the commands are pretty simple.  Hey, what do you want for
  74. free. :-)
  75.  
  76.     Please report any bugs or suggestions to barrett@cs.umass.edu.
  77.  
  78.